home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Workspace / Bypass / BypassController.h < prev    next >
Text File  |  1995-06-12  |  786b  |  49 lines

  1.  
  2. /*
  3.     Copyright 1993  Jeremy Slade.
  4.  
  5.     You are free to use all or any parts of the Bypass project
  6.     however you wish, just give credit where credit is due.
  7.     The author (Jeremy Slade) shall not be held responsible
  8.     for any damages that result out of use or misuse of any
  9.     part of this project.
  10.  
  11. */
  12.  
  13. /*
  14.     Project: Bypass
  15.     
  16.     File: BypassController.h
  17.     
  18.     Description:
  19.  
  20.     This file contains the Class interface for the BypassController. See BypassController.m for details on the actual operations it performs.
  21.     
  22.     Original Author: Jeremy Slade
  23.     
  24.     Revision History:
  25.         Created
  26.             JGS Sat Apr 10 14:28:17 MDT 1993
  27.  
  28. */
  29.  
  30. #ifndef Bypass_h
  31. #define Bypass_h
  32.  
  33. #import <objc/Object.h>
  34.  
  35.  
  36. @interface BypassController : Object
  37. {
  38. }
  39.  
  40. - (int)run;
  41.  
  42. - (int)disableDock;
  43. - (int)enableDock;
  44.  
  45. @end
  46.  
  47.  
  48. #endif // Bypass_h
  49.